home *** CD-ROM | disk | FTP | other *** search
/ Eros - Digital Erotica & Games / Eros - Digital Erotica & Games.iso / mac / EROS vol.1 / EROS vol.DXR / 00377.ls < prev    next >
Encoding:
Text File  |  1995-07-07  |  473 b   |  29 lines

  1. on startMovie
  2.   global fixpal
  3.   if the machineType = 256 then
  4.     exit
  5.   else
  6.     openXLib("FixPalette.XObj")
  7.     set fixpal to FixPalette(mnew, the stageLeft, the stageTop, the stageRight, the stageTop)
  8.   end if
  9. end
  10.  
  11. on patchpal
  12.   global fixpal
  13.   if the machineType = 256 then
  14.     exit
  15.   else
  16.     fixpal(mPatchIt)
  17.   end if
  18. end
  19.  
  20. on stopMovie
  21.   global fixpal
  22.   if the machineType = 256 then
  23.     exit
  24.   else
  25.     fixpal(mdispose)
  26.     closeXLib("FixPalette.XObj")
  27.   end if
  28. end
  29.